home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Dev / fpc / source / docs / refex / ex33.pp < prev    next >
Encoding:
Text File  |  2000-01-01  |  194 b   |  12 lines

  1. Program Example33;
  2.  
  3. { Program to demonstrate the Insert function. }
  4.  
  5. Var S : String;
  6.  
  7. begin
  8.   S:='Free Pascal is difficult to use !';
  9.   Insert ('NOT ',S,pos('difficult',S));
  10.   writeln (s);
  11. end.
  12.